home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / bipl.zip / PROGS.ZIP / SORTNAME.ICN < prev    next >
Text File  |  1992-11-26  |  684b  |  33 lines

  1. ############################################################################
  2. #
  3. #    File:     sortname.icn
  4. #
  5. #    Subject:  Program to order by last name
  6. #
  7. #    Author:   Ralph E. Griswold
  8. #
  9. #    Date:     May 22, 1992
  10. #
  11. ###########################################################################
  12.  
  13. link namepfx, lastname
  14.  
  15. procedure main()
  16.    local names, line, last, first
  17.  
  18.    names := table()
  19.  
  20.    while line := read() do {
  21.       last := lastname(line)
  22.       first := namepfx(line)
  23.       /names[last] := set()
  24.       insert(names[last], first)
  25.       }
  26.  
  27.    names := sort(names, 3)
  28.  
  29.    while last := get(names) do
  30.       every write(!sort(get(names)), " ", last)
  31.  
  32. end
  33.